您可以在数据系列的PlotElementLoaded(在线文档 'PlotElementLoaded 事件')事件中指定每一个条形或柱形的颜色,通过以下代码:
C# |
拷贝代码
|
---|---|
var palette = new Brush[] { Brushes.Red, Brushes.Plum, Brushes.Purple }; dataSeries.PlotElementLoaded += (s, e) => { PlotElement pe = (PlotElement)s; if (pe.DataPoint.PointIndex >= 0) pe.Fill = palette[pe.DataPoint.PointIndex % palette.Length]; }; |